[USER (data scientist)]: Hey, I've got this ATP tennis dataset, atp_tennis, and I want to see how player performance changes with different court surfaces over time. Can you help me out? At first, I need to change the 'Date' column to datetime format. Please generate a DataFrame with the 'Date' column converted to datetime format in the ATP tennis dataset.
My template of code snippet is:

---BEGIN CODE TEMPLATE---

import pandas as pd
import pickle
from decision_company import read_csv_file,

# please import the necessary private functions from decision_company first

atp_tennis = read_csv_file('atp_tennis.csv')

# YOUR SOLUTION BEGIN:
<code1>
[COMPLETE YOUR CODE] 
</code1>
# YOUR SOLUTION END

print(atp_tennis)

# save data
pickle.dump(atp_tennis,open("./pred_result/atp_tennis.pkl","wb"))

---END CODE TEMPLATE---

[YOU (AI assistant)]: No problem! Here's how you can do that: 
'''
import pandas as pd
import pickle
from decision_company import read_csv_file,

# please import the necessary private functions from decision_company first

atp_tennis = read_csv_file('atp_tennis.csv')

# YOUR SOLUTION BEGIN:
